SetAttributeValueRequest

data class SetAttributeValueRequest(nodeId: NodeId, name: String, value: String)

Represents request frame that can be used with DOM#setAttributeValue operation call.

Sets attribute for an element with given id.

See also

Constructors

SetAttributeValueRequest
Link copied to clipboard
fun SetAttributeValueRequest(nodeId: NodeId, name: String, value: String)

Properties

name
Link copied to clipboard
val name: String
Attribute name.
nodeId
Link copied to clipboard
val nodeId: NodeId
Id of the element to set attribute for.
value
Link copied to clipboard
val value: String
Attribute value.

Sources

jvm source
Link copied to clipboard